home *** CD-ROM | disk | FTP | other *** search
- #!/bin/sh
- #
- # Very simple shellscript to support recieving Macintosh files
- # and store them in a UNIX filesystem used by the CAP AUFS program.
- #
- # To be able to use this script without modifications, you must
- # first have the CAP package installed so you can mount the
- # UNIX filesystem from the Macintosh. Second, you must have the
- # program cvt2cap (which you can find in the contrib directory
- # of the CAP distribution) which converts between CAP format
- # to AppleSingle format.
- #
- # Written by Patrik Faltstrom, paf@nada.kth.se, may 1993
- #
-
- FILENAME=$1
-
- #
- # If $AFPDIR environment variable is set, all Macintosh filenames
- # is based on that directory.
- #
- if [ "x$AFPDIR" = "x" ]; then
- AFPDIR=`pwd`
- fi
-
- echo -n "Please give a name for this Macintosh file: "
- read NAME
-
- if [ "x$NAME" = "x" ]; then
- echo "No name given, exiting"
- exit 1
- fi
-
- echo $NAME | grep '^/' > /dev/null
- if [ $? = 1 ]; then
- NAME=$AFPDIR/$NAME
- fi
-
- cvt2cap $FILENAME $NAME
- echo "Saved AppleMacintosh file as $NAME"
- exit 0
-
-
-